home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 02_Cabinet / DATETIME.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  2.0 KB  |  73 lines

  1. // DateTime.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #if !defined(AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_)
  13. #define AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_
  14.  
  15. #if _MSC_VER >= 1000
  16. #pragma once
  17. #endif // _MSC_VER >= 1000
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CDateTimePage dialog
  21.  
  22. class CDateTimePage : public CPropertyPage
  23. {
  24.     DECLARE_DYNCREATE(CDateTimePage)
  25.  
  26. // Construction
  27. public:
  28.     void OnDTNotify(NMHDR *pHdr, LRESULT *pRes);
  29.     CListBox m_lbNotifyList;
  30.     UINT m_nPrevStyle;
  31.     void SetCheck(UINT idBtn);
  32.     CDateTimeCtrl m_DateTime;
  33.     CDateTimePage();
  34.     ~CDateTimePage();
  35.  
  36. // Dialog Data
  37.     //{{AFX_DATA(CDateTimePage)
  38.     enum { IDD = IDD_DATETIME };
  39.     BOOL    m_bAppCanParse;
  40.     BOOL    m_bShowNone;
  41.     BOOL    m_bUpDown;
  42.     //}}AFX_DATA
  43.  
  44.  
  45. // Overrides
  46.     // ClassWizard generate virtual function overrides
  47.     //{{AFX_VIRTUAL(CDateTimePage)
  48.     public:
  49.     protected:
  50.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  51.     //}}AFX_VIRTUAL
  52.  
  53. // Implementation
  54. protected:
  55.     // Generated message map functions
  56.     //{{AFX_MSG(CDateTimePage)
  57.     virtual BOOL OnInitDialog();
  58.     afx_msg void OnCkupdown();
  59.     afx_msg void OnCktimeformat();
  60.     afx_msg void OnCkshortdateformat();
  61.     afx_msg void OnCkshownone();
  62.     afx_msg void OnCklongdateformat();
  63.     afx_msg void OnCkappcanparse();
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66.  
  67. };
  68.  
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  71.  
  72. #endif // !defined(AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_)
  73.